Dynomotion

Group: DynoMotion Message: 4783 From: Fouijar Date: 5/6/2012
Subject: ATC M6 macro under mach3
Hi Tom, Ray,

In December Ray helped me to rewrite the macro I did for ATC in Mach3.
At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.

I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.

I did some tests with the clamp and unclamp sub calls only, and I still have the same message.

I don't know if I have to use an oemdro for the Getcurrentool()?

So if you can explain me what's wrong I could go further.

Thanks for your attention,

Jerome
Group: DynoMotion Message: 4789 From: Tom Kerekes Date: 5/6/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
These are Mach3 and Mach3 VB questions.  I fixed general typos and syntax errors so it now compiles and uploaded the file.
 
It will be up to you to understand it and debug it.  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
 
The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
 
Regards
TK

Group: DynoMotion Message: 4791 From: Fouijar Date: 5/6/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I know this is Mach3 related.
But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
I started a topic on the VB section of machsupport.
http://www.machsupport.com/forum/index.php/topic,21505.0.html

The flowchart is included in my files: ATC procedure.png

The Compare function was created to check if the current tool is the same as the requested tool or new tool.

Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
I haven't checked your work yet.

Regards,

J.



--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
>  
> These are Mach3 and Mach3 VB questions.  I fixed general typos and syntax errors so it now compiles and uploaded the file.
>  
> It will be up to you to understand it and debug it.  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
>  
> The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
>  
> Regards
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, May 6, 2012 9:09 AM
> Subject: [DynoMotion] ATC M6 macro under mach3
>
>
>  
> Hi Tom, Ray,
>
> In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
>
> I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
>
> I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
>
> I don't know if I have to use an oemdro for the Getcurrentool()?
>
> So if you can explain me what's wrong I could go further.
>
> Thanks for your attention,
>
> Jerome
>
Group: DynoMotion Message: 4793 From: Fouijar Date: 5/6/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:

while(IsMoving())
Sleep(100)
code("G00 Z-35")'Move to the safe Z position for tool change
while (IsMoving())

Should be this:

Code "G00 Z-35"
While IsMoving()
Wend

You don't need the Sleep() in the While IsMoving().

Mods are proposed by ger21 on machsupport forum.

I tried that, and your file without success.
I also tried a mix with(out) parenthesis :

IsMoving()<>(IsMoving())
code("G00 Z-35")<>Code "G00 Z-35"

Anyway I keep trying to find what's wrong.

Jerome




--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I know this is Mach3 related.
> But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> I started a topic on the VB section of machsupport.
> http://www.machsupport.com/forum/index.php/topic,21505.0.html
>
> The flowchart is included in my files: ATC procedure.png
>
> The Compare function was created to check if the current tool is the same as the requested tool or new tool.
>
> Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> I haven't checked your work yet.
>
> Regards,
>
> J.
>
>
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > These are Mach3 and Mach3 VB questions.  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> >  
> > It will be up to you to understand it and debug it.  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> >  
> > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> >  
> > Regards
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, May 6, 2012 9:09 AM
> > Subject: [DynoMotion] ATC M6 macro under mach3
> >
> >
> >  
> > Hi Tom, Ray,
> >
> > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> >
> > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> >
> > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> >
> > I don't know if I have to use an oemdro for the Getcurrentool()?
> >
> > So if you can explain me what's wrong I could go further.
> >
> > Thanks for your attention,
> >
> > Jerome
> >
>
Group: DynoMotion Message: 4795 From: Tom Kerekes Date: 5/6/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
Sorry I wasn't aware of the Flowchart.  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
 
I wouldn't expect you to be able to just run it and get success.  Something that complex will need to be debugged step by step.
 
I don't think parenthesis makes any difference in those cases.
 
To debug you might change the:
 
NewTool = GetSelectedTool()
OldTool = GetCurrentTool()
to
 
NewTool = 5
OldTool = 3
 
in order to force a known case and be able to run it right from the VB editor.  Use single step and verify each step does what you expect.
 
I think you should change the initial Compare to (because it wasn't waiting for anything):
 
'Air Cylinder Homing
sub AirCyHome()
 DeactivateSignal(OUTPUT8)
 While (IsActive(INPUT1))
  Sleep(10)
 Wend
end sub
 
 
Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
 
 
'Carrousel air cylinder position check : Home, in Mvt and ToolChange
Function ToolChangerPos() As Boolean
 If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
 ToolChangerPos = 0
 TCMove = False 'We are stopped
 
 ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
  ToolChangerPos = 1
  TCMove = False
  Else
  ToolChangerPos = -1
  TCMove = True
 End If
End Function
 
the SpindleHome function just sets an output bit.  I don't understand how you expect this to home the spindle.  What type of spindle do you have?
 
Regards
TK
 
 
 
 

Group: DynoMotion Message: 4799 From: Fouijar Date: 5/6/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I started debugging this evening, more to come tomorrow.
I suppressed the compare function and made a test to know if the program has to run or leave.
The air cylinder procedure was written to add a security check.
The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).

Thanks for your help,

Jerome

PS: I also write on the machsupport forum, this will give more visibility and resources.

http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510




--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
>  
> Sorry I wasn't aware of the Flowchart.  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
>  
> I wouldn't expect you to be able to just run it and get success.  Something that complex will need to be debugged step by step.
>  
> I don't think parenthesis makes any difference in those cases.
>  
> To debug you might change the:
>  
> NewTool = GetSelectedTool()
> OldTool = GetCurrentTool()
>
> to
>  
> NewTool = 5
> OldTool = 3
>  
> in order to force a known case and be able to run it right from the VB editor.  Use single step and verify each step does what you expect.
>  
> I think you should change the initial Compare to (because it wasn't waiting for anything):
>  
> 'Air Cylinder Homing
> sub AirCyHome()
>  DeactivateSignal(OUTPUT8)
>  While (IsActive(INPUT1))
>   Sleep(10)
>  Wend
> end sub
>  
>  
> Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
>  
>  
> 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> Function ToolChangerPos() As Boolean
>  If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
>  ToolChangerPos = 0
>  TCMove = False 'We are stopped
>  
>  ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
>   ToolChangerPos = 1
>   TCMove = False
>   Else
>   ToolChangerPos = -1
>   TCMove = True
>  End If
> End Function
>
>  
> the SpindleHome function just sets an output bit.  I don't understand how you expect this to home the spindle.  What type of spindle do you have?
>  
> Regards
> TK
>  
>  
>  
>  
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, May 6, 2012 1:38 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
>  
> Hi Tom,
>
> I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
>
> while(IsMoving())
> Sleep(100)
> code("G00 Z-35")'Move to the safe Z position for tool change
> while (IsMoving())
>
> Should be this:
>
> Code "G00 Z-35"
> While IsMoving()
> Wend
>
> You don't need the Sleep() in the While IsMoving().
>
> Mods are proposed by ger21 on machsupport forum.
>
> I tried that, and your file without success.
> I also tried a mix with(out) parenthesis :
>
> IsMoving()<>(IsMoving())
> code("G00 Z-35")<>Code "G00 Z-35"
>
> Anyway I keep trying to find what's wrong.
>
> Jerome
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I know this is Mach3 related.
> > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > I started a topic on the VB section of machsupport.
> > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> >
> > The flowchart is included in my files: ATC procedure.png
> >
> > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> >
> > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > I haven't checked your work yet.
> >
> > Regards,
> >
> > J.
> >
> >
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > These are Mach3 and Mach3 VB questions.  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > >  
> > > It will be up to you to understand it and debug it.  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > >  
> > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > >  
> > > Regards
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, May 6, 2012 9:09 AM
> > > Subject: [DynoMotion] ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Hi Tom, Ray,
> > >
> > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > >
> > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > >
> > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > >
> > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > >
> > > So if you can explain me what's wrong I could go further.
> > >
> > > Thanks for your attention,
> > >
> > > Jerome
> > >
> >
>
Group: DynoMotion Message: 4813 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
So I call functions inside the Main Sub.
I also use MsgBox to check what's wrong.
The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?

The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.

If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.

I posted My code in the txt file ATC_J_Debug.

Thanks for your attention,

Jerome



--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I started debugging this evening, more to come tomorrow.
> I suppressed the compare function and made a test to know if the program has to run or leave.
> The air cylinder procedure was written to add a security check.
> The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
>
> Thanks for your help,
>
> Jerome
>
> PS: I also write on the machsupport forum, this will give more visibility and resources.
>
> http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
>
>
>
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > Sorry I wasn't aware of the Flowchart.  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> >  
> > I wouldn't expect you to be able to just run it and get success.  Something that complex will need to be debugged step by step.
> >  
> > I don't think parenthesis makes any difference in those cases.
> >  
> > To debug you might change the:
> >  
> > NewTool = GetSelectedTool()
> > OldTool = GetCurrentTool()
> >
> > to
> >  
> > NewTool = 5
> > OldTool = 3
> >  
> > in order to force a known case and be able to run it right from the VB editor.  Use single step and verify each step does what you expect.
> >  
> > I think you should change the initial Compare to (because it wasn't waiting for anything):
> >  
> > 'Air Cylinder Homing
> > sub AirCyHome()
> >  DeactivateSignal(OUTPUT8)
> >  While (IsActive(INPUT1))
> >   Sleep(10)
> >  Wend
> > end sub
> >  
> >  
> > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> >  
> >  
> > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > Function ToolChangerPos() As Boolean
> >  If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> >  ToolChangerPos = 0
> >  TCMove = False 'We are stopped
> >  
> >  ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> >   ToolChangerPos = 1
> >   TCMove = False
> >   Else
> >   ToolChangerPos = -1
> >   TCMove = True
> >  End If
> > End Function
> >
> >  
> > the SpindleHome function just sets an output bit.  I don't understand how you expect this to home the spindle.  What type of spindle do you have?
> >  
> > Regards
> > TK
> >  
> >  
> >  
> >  
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, May 6, 2012 1:38 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> >  
> > Hi Tom,
> >
> > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> >
> > while(IsMoving())
> > Sleep(100)
> > code("G00 Z-35")'Move to the safe Z position for tool change
> > while (IsMoving())
> >
> > Should be this:
> >
> > Code "G00 Z-35"
> > While IsMoving()
> > Wend
> >
> > You don't need the Sleep() in the While IsMoving().
> >
> > Mods are proposed by ger21 on machsupport forum.
> >
> > I tried that, and your file without success.
> > I also tried a mix with(out) parenthesis :
> >
> > IsMoving()<>(IsMoving())
> > code("G00 Z-35")<>Code "G00 Z-35"
> >
> > Anyway I keep trying to find what's wrong.
> >
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I know this is Mach3 related.
> > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > I started a topic on the VB section of machsupport.
> > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > >
> > > The flowchart is included in my files: ATC procedure.png
> > >
> > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > >
> > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > I haven't checked your work yet.
> > >
> > > Regards,
> > >
> > > J.
> > >
> > >
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > >  
> > > > These are Mach3 and Mach3 VB questions.  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > >  
> > > > It will be up to you to understand it and debug it.  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > >  
> > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > >  
> > > > Regards
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > >
> > > >
> > > >  
> > > > Hi Tom, Ray,
> > > >
> > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > >
> > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > >
> > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > >
> > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > >
> > > > So if you can explain me what's wrong I could go further.
> > > >
> > > > Thanks for your attention,
> > > >
> > > > Jerome
> > > >
> > >
> >
>
Group: DynoMotion Message: 4814 From: Tom Kerekes Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
activatesignal(OUTPUT1) should work.  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
 
Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
 
activatesignal(OUTPUT1)
Sleep 1000
deactivatesignal(OUTPUT1)
Sleep 1000
activatesignal(OUTPUT1)
Sleep 1000
deactivatesignal(OUTPUT1)
TK

Group: DynoMotion Message: 4815 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

Outputs and inputs enabled.

I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
sequence. The idea is to have an output condition, or a temp.
INPUT5 is the limit switch indicating that the drawbar has released the tool.
I will test both and see.

J.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
>  
> activatesignal(OUTPUT1) should work.  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
>  
> Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
>  
> activatesignal(OUTPUT1)
> Sleep 1000
> deactivatesignal(OUTPUT1)
> Sleep 1000
> activatesignal(OUTPUT1)
> Sleep 1000
> deactivatesignal(OUTPUT1)
>
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 2:34 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
>  
> Hi Tom,
>
> I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> So I call functions inside the Main Sub.
> I also use MsgBox to check what's wrong.
> The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
>
> The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
>
> If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
>
> I posted My code in the txt file ATC_J_Debug.
>
> Thanks for your attention,
>
> Jerome
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I started debugging this evening, more to come tomorrow.
> > I suppressed the compare function and made a test to know if the program has to run or leave.
> > The air cylinder procedure was written to add a security check.
> > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> >
> > Thanks for your help,
> >
> > Jerome
> >
> > PS: I also write on the machsupport forum, this will give more visibility and resources.
> >
> > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> >
> >
> >
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > Sorry I wasn't aware of the Flowchart.  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > >  
> > > I wouldn't expect you to be able to just run it and get success.  Something that complex will need to be debugged step by step.
> > >  
> > > I don't think parenthesis makes any difference in those cases.
> > >  
> > > To debug you might change the:
> > >  
> > > NewTool = GetSelectedTool()
> > > OldTool = GetCurrentTool()
> > >
> > > to
> > >  
> > > NewTool = 5
> > > OldTool = 3
> > >  
> > > in order to force a known case and be able to run it right from the VB editor.  Use single step and verify each step does what you expect.
> > >  
> > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > >  
> > > 'Air Cylinder Homing
> > > sub AirCyHome()
> > >  DeactivateSignal(OUTPUT8)
> > >  While (IsActive(INPUT1))
> > >   Sleep(10)
> > >  Wend
> > > end sub
> > >  
> > >  
> > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > >  
> > >  
> > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > Function ToolChangerPos() As Boolean
> > >  If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > >  ToolChangerPos = 0
> > >  TCMove = False 'We are stopped
> > >  
> > >  ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > >   ToolChangerPos = 1
> > >   TCMove = False
> > >   Else
> > >   ToolChangerPos = -1
> > >   TCMove = True
> > >  End If
> > > End Function
> > >
> > >  
> > > the SpindleHome function just sets an output bit.  I don't understand how you expect this to home the spindle.  What type of spindle do you have?
> > >  
> > > Regards
> > > TK
> > >  
> > >  
> > >  
> > >  
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, May 6, 2012 1:38 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Hi Tom,
> > >
> > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > >
> > > while(IsMoving())
> > > Sleep(100)
> > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > while (IsMoving())
> > >
> > > Should be this:
> > >
> > > Code "G00 Z-35"
> > > While IsMoving()
> > > Wend
> > >
> > > You don't need the Sleep() in the While IsMoving().
> > >
> > > Mods are proposed by ger21 on machsupport forum.
> > >
> > > I tried that, and your file without success.
> > > I also tried a mix with(out) parenthesis :
> > >
> > > IsMoving()<>(IsMoving())
> > > code("G00 Z-35")<>Code "G00 Z-35"
> > >
> > > Anyway I keep trying to find what's wrong.
> > >
> > > Jerome
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I know this is Mach3 related.
> > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > I started a topic on the VB section of machsupport.
> > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > >
> > > > The flowchart is included in my files: ATC procedure.png
> > > >
> > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > >
> > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > I haven't checked your work yet.
> > > >
> > > > Regards,
> > > >
> > > > J.
> > > >
> > > >
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > >  
> > > > > These are Mach3 and Mach3 VB questions.  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > >  
> > > > > It will be up to you to understand it and debug it.  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > >  
> > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > >  
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > >
> > > > >
> > > > >  
> > > > > Hi Tom, Ray,
> > > > >
> > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > >
> > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > >
> > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > >
> > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > >
> > > > > So if you can explain me what's wrong I could go further.
> > > > >
> > > > > Thanks for your attention,
> > > > >
> > > > > Jerome
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4816 From: Tom Kerekes Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
I can't understand what you are saying, but to wait for an input I think you would do something like
 
while (not IsActive(INPUT5))
  Sleep(100)
wend
 
TK

Group: DynoMotion Message: 4817 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

SystemWaitFor is a Bad idea...
It freezes everything or nearly.

I used OUTPUT1 and 4, the Led is working. I also found that the flow sequence isn't followed as called/written. This is clear when I receive MsgBox that are logically after the previous which hasn't showed up but after the last i.e.

I'll rewrite my M6 without subs, functions and check.
I have little experience with VB, but this is illogic* for a programming language, I already pointed this issue before and tried to use GoTo, without success. (*I think something is missing me to handle the program nicely).

I update when appropriate,

J.

--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Outputs and inputs enabled.
>
> I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> sequence. The idea is to have an output condition, or a temp.
> INPUT5 is the limit switch indicating that the drawbar has released the tool.
> I will test both and see.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > activatesignal(OUTPUT1) should work.  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> >  
> > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> >  
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> > Sleep 1000
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> >
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 2:34 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> >  
> > Hi Tom,
> >
> > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > So I call functions inside the Main Sub.
> > I also use MsgBox to check what's wrong.
> > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> >
> > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> >
> > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> >
> > I posted My code in the txt file ATC_J_Debug.
> >
> > Thanks for your attention,
> >
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I started debugging this evening, more to come tomorrow.
> > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > The air cylinder procedure was written to add a security check.
> > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > >
> > > Thanks for your help,
> > >
> > > Jerome
> > >
> > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > >
> > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > >
> > >
> > >
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > >  
> > > > Sorry I wasn't aware of the Flowchart.  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > >  
> > > > I wouldn't expect you to be able to just run it and get success.  Something that complex will need to be debugged step by step.
> > > >  
> > > > I don't think parenthesis makes any difference in those cases.
> > > >  
> > > > To debug you might change the:
> > > >  
> > > > NewTool = GetSelectedTool()
> > > > OldTool = GetCurrentTool()
> > > >
> > > > to
> > > >  
> > > > NewTool = 5
> > > > OldTool = 3
> > > >  
> > > > in order to force a known case and be able to run it right from the VB editor.  Use single step and verify each step does what you expect.
> > > >  
> > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > >  
> > > > 'Air Cylinder Homing
> > > > sub AirCyHome()
> > > >  DeactivateSignal(OUTPUT8)
> > > >  While (IsActive(INPUT1))
> > > >   Sleep(10)
> > > >  Wend
> > > > end sub
> > > >  
> > > >  
> > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > >  
> > > >  
> > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > Function ToolChangerPos() As Boolean
> > > >  If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > >  ToolChangerPos = 0
> > > >  TCMove = False 'We are stopped
> > > >  
> > > >  ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > >   ToolChangerPos = 1
> > > >   TCMove = False
> > > >   Else
> > > >   ToolChangerPos = -1
> > > >   TCMove = True
> > > >  End If
> > > > End Function
> > > >
> > > >  
> > > > the SpindleHome function just sets an output bit.  I don't understand how you expect this to home the spindle.  What type of spindle do you have?
> > > >  
> > > > Regards
> > > > TK
> > > >  
> > > >  
> > > >  
> > > >  
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > >  
> > > > Hi Tom,
> > > >
> > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > >
> > > > while(IsMoving())
> > > > Sleep(100)
> > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > while (IsMoving())
> > > >
> > > > Should be this:
> > > >
> > > > Code "G00 Z-35"
> > > > While IsMoving()
> > > > Wend
> > > >
> > > > You don't need the Sleep() in the While IsMoving().
> > > >
> > > > Mods are proposed by ger21 on machsupport forum.
> > > >
> > > > I tried that, and your file without success.
> > > > I also tried a mix with(out) parenthesis :
> > > >
> > > > IsMoving()<>(IsMoving())
> > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > >
> > > > Anyway I keep trying to find what's wrong.
> > > >
> > > > Jerome
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I know this is Mach3 related.
> > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > I started a topic on the VB section of machsupport.
> > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > >
> > > > > The flowchart is included in my files: ATC procedure.png
> > > > >
> > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > >
> > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > I haven't checked your work yet.
> > > > >
> > > > > Regards,
> > > > >
> > > > > J.
> > > > >
> > > > >
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > >  
> > > > > > These are Mach3 and Mach3 VB questions.  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > >  
> > > > > > It will be up to you to understand it and debug it.  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > >  
> > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > >  
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > >  
> > > > > > Hi Tom, Ray,
> > > > > >
> > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > >
> > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > >
> > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > >
> > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > >
> > > > > > So if you can explain me what's wrong I could go further.
> > > > > >
> > > > > > Thanks for your attention,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4818 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

Yes this the idea, but my actual problem is more about calling sequence not followed as it should.

J.


--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
>  
> I can't understand what you are saying, but to wait for an input I think you would do something like
>  
> while (not IsActive(INPUT5))
>   Sleep(100)
> wend
>  
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 3:19 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
>  
> Hi Tom,
>
> Outputs and inputs enabled.
>
> I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> sequence. The idea is to have an output condition, or a temp.
> INPUT5 is the limit switch indicating that the drawbar has released the tool.
> I will test both and see.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > activatesignal(OUTPUT1) should work.  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> >  
> > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> >  
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> > Sleep 1000
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> >
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 2:34 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> >  
> > Hi Tom,
> >
> > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > So I call functions inside the Main Sub.
> > I also use MsgBox to check what's wrong.
> > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> >
> > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> >
> > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> >
> > I posted My code in the txt file ATC_J_Debug.
> >
> > Thanks for your attention,
> >
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I started debugging this evening, more to come tomorrow.
> > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > The air cylinder procedure was written to add a security check.
> > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > >
> > > Thanks for your help,
> > >
> > > Jerome
> > >
> > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > >
> > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > >
> > >
> > >
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > >  
> > > > Sorry I wasn't aware of the Flowchart.  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > >  
> > > > I wouldn't expect you to be able to just run it and get success.  Something that complex will need to be debugged step by step.
> > > >  
> > > > I don't think parenthesis makes any difference in those cases.
> > > >  
> > > > To debug you might change the:
> > > >  
> > > > NewTool = GetSelectedTool()
> > > > OldTool = GetCurrentTool()
> > > >
> > > > to
> > > >  
> > > > NewTool = 5
> > > > OldTool = 3
> > > >  
> > > > in order to force a known case and be able to run it right from the VB editor.  Use single step and verify each step does what you expect.
> > > >  
> > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > >  
> > > > 'Air Cylinder Homing
> > > > sub AirCyHome()
> > > >  DeactivateSignal(OUTPUT8)
> > > >  While (IsActive(INPUT1))
> > > >   Sleep(10)
> > > >  Wend
> > > > end sub
> > > >  
> > > >  
> > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > >  
> > > >  
> > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > Function ToolChangerPos() As Boolean
> > > >  If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > >  ToolChangerPos = 0
> > > >  TCMove = False 'We are stopped
> > > >  
> > > >  ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > >   ToolChangerPos = 1
> > > >   TCMove = False
> > > >   Else
> > > >   ToolChangerPos = -1
> > > >   TCMove = True
> > > >  End If
> > > > End Function
> > > >
> > > >  
> > > > the SpindleHome function just sets an output bit.  I don't understand how you expect this to home the spindle.  What type of spindle do you have?
> > > >  
> > > > Regards
> > > > TK
> > > >  
> > > >  
> > > >  
> > > >  
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > >  
> > > > Hi Tom,
> > > >
> > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > >
> > > > while(IsMoving())
> > > > Sleep(100)
> > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > while (IsMoving())
> > > >
> > > > Should be this:
> > > >
> > > > Code "G00 Z-35"
> > > > While IsMoving()
> > > > Wend
> > > >
> > > > You don't need the Sleep() in the While IsMoving().
> > > >
> > > > Mods are proposed by ger21 on machsupport forum.
> > > >
> > > > I tried that, and your file without success.
> > > > I also tried a mix with(out) parenthesis :
> > > >
> > > > IsMoving()<>(IsMoving())
> > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > >
> > > > Anyway I keep trying to find what's wrong.
> > > >
> > > > Jerome
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I know this is Mach3 related.
> > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > I started a topic on the VB section of machsupport.
> > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > >
> > > > > The flowchart is included in my files: ATC procedure.png
> > > > >
> > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > >
> > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > I haven't checked your work yet.
> > > > >
> > > > > Regards,
> > > > >
> > > > > J.
> > > > >
> > > > >
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'‚ 
> > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > ÃÆ'‚ 
> > > > > > It will be up to you to understand itÃÆ'‚ and debug it.ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > ÃÆ'‚ 
> > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > ÃÆ'‚ 
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚ 
> > > > > > Hi Tom, Ray,
> > > > > >
> > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > >
> > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > >
> > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > >
> > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > >
> > > > > > So if you can explain me what's wrong I could go further.
> > > > > >
> > > > > > Thanks for your attention,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4819 From: Tom Kerekes Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
Very unlikely there is a problem with the VB Interpreter :}
 
Did you realize that you can single step through your code?
 
Regards
TK

Group: DynoMotion Message: 4820 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I realize that but I use the included interpreter in Mach3 which is...
I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.

What is the debugger you use for VB macros?

J.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
>  
> Very unlikely there is a problem with the VB Interpreter :}
>  
> Did you realize that you can single step through your code?
>  
> Regards
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 3:56 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
>  
> Hi Tom,
>
> Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > I can't understand what you are saying, but to wait for an input I think you would do something like
> >  
> > while (not IsActive(INPUT5))
> >   Sleep(100)
> > wend
> >  
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 3:19 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> >  
> > Hi Tom,
> >
> > Outputs and inputs enabled.
> >
> > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > sequence. The idea is to have an output condition, or a temp.
> > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > I will test both and see.
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > activatesignal(OUTPUT1) should work.  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > >  
> > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > >  
> > > activatesignal(OUTPUT1)
> > > Sleep 1000
> > > deactivatesignal(OUTPUT1)
> > > Sleep 1000
> > > activatesignal(OUTPUT1)
> > > Sleep 1000
> > > deactivatesignal(OUTPUT1)
> > >
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 2:34 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Hi Tom,
> > >
> > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > So I call functions inside the Main Sub.
> > > I also use MsgBox to check what's wrong.
> > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > >
> > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > >
> > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > >
> > > I posted My code in the txt file ATC_J_Debug.
> > >
> > > Thanks for your attention,
> > >
> > > Jerome
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I started debugging this evening, more to come tomorrow.
> > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > The air cylinder procedure was written to add a security check.
> > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > >
> > > > Thanks for your help,
> > > >
> > > > Jerome
> > > >
> > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > >
> > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > >
> > > >
> > > >
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃÆ'‚ 
> > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > ÃÆ'‚ 
> > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > ÃÆ'‚ 
> > > > > I don't think parenthesis makes any difference in those cases.
> > > > > ÃÆ'‚ 
> > > > > To debug you might change the:
> > > > > ÃÆ'‚ 
> > > > > NewTool = GetSelectedTool()
> > > > > OldTool = GetCurrentTool()
> > > > >
> > > > > to
> > > > > ÃÆ'‚ 
> > > > > NewTool = 5
> > > > > OldTool = 3
> > > > > ÃÆ'‚ 
> > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > ÃÆ'‚ 
> > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > ÃÆ'‚ 
> > > > > 'Air Cylinder Homing
> > > > > sub AirCyHome()
> > > > > ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > ÃÆ'‚ While (IsActive(INPUT1))
> > > > > ÃÆ'‚ ÃÆ'‚ Sleep(10)
> > > > > ÃÆ'‚ Wend
> > > > > end sub
> > > > > ÃÆ'‚ 
> > > > > ÃÆ'‚ 
> > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > ÃÆ'‚ 
> > > > > ÃÆ'‚ 
> > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > Function ToolChangerPos() As Boolean
> > > > > ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > ÃÆ'‚ ToolChangerPos = 0
> > > > > ÃÆ'‚ TCMove = False 'We are stopped
> > > > > ÃÆ'‚ 
> > > > > ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > ÃÆ'‚ ÃÆ'‚ ToolChangerPos = 1
> > > > > ÃÆ'‚ ÃÆ'‚ TCMove = False
> > > > > ÃÆ'‚ ÃÆ'‚ Else
> > > > > ÃÆ'‚ ÃÆ'‚ ToolChangerPos = -1
> > > > > ÃÆ'‚ ÃÆ'‚ TCMove = True
> > > > > ÃÆ'‚ End If
> > > > > End Function
> > > > >
> > > > > ÃÆ'‚ 
> > > > > the SpindleHome function just sets an output bit.ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'‚  What type of spindle do you have?
> > > > > ÃÆ'‚ 
> > > > > Regards
> > > > > TK
> > > > > ÃÆ'‚ 
> > > > > ÃÆ'‚ 
> > > > > ÃÆ'‚ 
> > > > > ÃÆ'‚ 
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃÆ'‚ 
> > > > > Hi Tom,
> > > > >
> > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > >
> > > > > while(IsMoving())
> > > > > Sleep(100)
> > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > while (IsMoving())
> > > > >
> > > > > Should be this:
> > > > >
> > > > > Code "G00 Z-35"
> > > > > While IsMoving()
> > > > > Wend
> > > > >
> > > > > You don't need the Sleep() in the While IsMoving().
> > > > >
> > > > > Mods are proposed by ger21 on machsupport forum.
> > > > >
> > > > > I tried that, and your file without success.
> > > > > I also tried a mix with(out) parenthesis :
> > > > >
> > > > > IsMoving()<>(IsMoving())
> > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > >
> > > > > Anyway I keep trying to find what's wrong.
> > > > >
> > > > > Jerome
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I know this is Mach3 related.
> > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > I started a topic on the VB section of machsupport.
> > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > >
> > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > >
> > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > >
> > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > I haven't checked your work yet.
> > > > > >
> > > > > > Regards,
> > > > > >
> > > > > > J.
> > > > > >
> > > > > >
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > It will be up to you to understand itÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Hi Tom, Ray,
> > > > > > >
> > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > >
> > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > >
> > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > >
> > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > >
> > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > >
> > > > > > > Thanks for your attention,
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4821 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Re,

Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!

J.

--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I realize that but I use the included interpreter in Mach3 which is...
> I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
>
> What is the debugger you use for VB macros?
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > Very unlikely there is a problem with the VB Interpreter :}
> >  
> > Did you realize that you can single step through your code?
> >  
> > Regards
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 3:56 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> >  
> > Hi Tom,
> >
> > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > I can't understand what you are saying, but to wait for an input I think you would do something like
> > >  
> > > while (not IsActive(INPUT5))
> > >   Sleep(100)
> > > wend
> > >  
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 3:19 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Hi Tom,
> > >
> > > Outputs and inputs enabled.
> > >
> > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > sequence. The idea is to have an output condition, or a temp.
> > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > I will test both and see.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > >  
> > > > activatesignal(OUTPUT1) should work.  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > >  
> > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > >  
> > > > activatesignal(OUTPUT1)
> > > > Sleep 1000
> > > > deactivatesignal(OUTPUT1)
> > > > Sleep 1000
> > > > activatesignal(OUTPUT1)
> > > > Sleep 1000
> > > > deactivatesignal(OUTPUT1)
> > > >
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > >  
> > > > Hi Tom,
> > > >
> > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > So I call functions inside the Main Sub.
> > > > I also use MsgBox to check what's wrong.
> > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > >
> > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > >
> > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > >
> > > > I posted My code in the txt file ATC_J_Debug.
> > > >
> > > > Thanks for your attention,
> > > >
> > > > Jerome
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I started debugging this evening, more to come tomorrow.
> > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > The air cylinder procedure was written to add a security check.
> > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > >
> > > > > Thanks for your help,
> > > > >
> > > > > Jerome
> > > > >
> > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > >
> > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'‚ 
> > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > ÃÆ'‚ 
> > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > > ÃÆ'‚ 
> > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > ÃÆ'‚ 
> > > > > > To debug you might change the:
> > > > > > ÃÆ'‚ 
> > > > > > NewTool = GetSelectedTool()
> > > > > > OldTool = GetCurrentTool()
> > > > > >
> > > > > > to
> > > > > > ÃÆ'‚ 
> > > > > > NewTool = 5
> > > > > > OldTool = 3
> > > > > > ÃÆ'‚ 
> > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > > ÃÆ'‚ 
> > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > ÃÆ'‚ 
> > > > > > 'Air Cylinder Homing
> > > > > > sub AirCyHome()
> > > > > > ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > ÃÆ'‚ ÃÆ'‚ Sleep(10)
> > > > > > ÃÆ'‚ Wend
> > > > > > end sub
> > > > > > ÃÆ'‚ 
> > > > > > ÃÆ'‚ 
> > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > ÃÆ'‚ 
> > > > > > ÃÆ'‚ 
> > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > Function ToolChangerPos() As Boolean
> > > > > > ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > ÃÆ'‚ ToolChangerPos = 0
> > > > > > ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > ÃÆ'‚ 
> > > > > > ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > ÃÆ'‚ ÃÆ'‚ ToolChangerPos = 1
> > > > > > ÃÆ'‚ ÃÆ'‚ TCMove = False
> > > > > > ÃÆ'‚ ÃÆ'‚ Else
> > > > > > ÃÆ'‚ ÃÆ'‚ ToolChangerPos = -1
> > > > > > ÃÆ'‚ ÃÆ'‚ TCMove = True
> > > > > > ÃÆ'‚ End If
> > > > > > End Function
> > > > > >
> > > > > > ÃÆ'‚ 
> > > > > > the SpindleHome function just sets an output bit.ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'‚  What type of spindle do you have?
> > > > > > ÃÆ'‚ 
> > > > > > Regards
> > > > > > TK
> > > > > > ÃÆ'‚ 
> > > > > > ÃÆ'‚ 
> > > > > > ÃÆ'‚ 
> > > > > > ÃÆ'‚ 
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚ 
> > > > > > Hi Tom,
> > > > > >
> > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > >
> > > > > > while(IsMoving())
> > > > > > Sleep(100)
> > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > while (IsMoving())
> > > > > >
> > > > > > Should be this:
> > > > > >
> > > > > > Code "G00 Z-35"
> > > > > > While IsMoving()
> > > > > > Wend
> > > > > >
> > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > >
> > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > >
> > > > > > I tried that, and your file without success.
> > > > > > I also tried a mix with(out) parenthesis :
> > > > > >
> > > > > > IsMoving()<>(IsMoving())
> > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > >
> > > > > > Anyway I keep trying to find what's wrong.
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > >
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I know this is Mach3 related.
> > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > >
> > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > >
> > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > >
> > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > I haven't checked your work yet.
> > > > > > >
> > > > > > > Regards,
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > It will be up to you to understand itÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Hi Tom, Ray,
> > > > > > > >
> > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > >
> > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > >
> > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > >
> > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > >
> > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > >
> > > > > > > > Thanks for your attention,
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4822 From: Tom Kerekes Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
The included Mach3 interpreter allows you to single step as well as look at variables.
 
Operator | VB Script Editor
 
Regards
TK

Group: DynoMotion Message: 4823 From: Tom Kerekes Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
Look at the example I provided.  I removed the sub main statement (no need for it).  It makes the function or subroutine calls fine.
 
Regards
TK

Group: DynoMotion Message: 4824 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

Many thanks for your help.

I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
I always have the syntax error, but will try as you did, without
main statement.

I'll have a check on your file now.

Regards, J

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
>  
> Look at the example I provided.  I removed the sub main statement (no need for it).  It makes the function or subroutine calls fine.
>  
> Regards
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 4:30 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
>  
> Re,
>
> Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
>
> J.
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I realize that but I use the included interpreter in Mach3 which is...
> > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> >
> > What is the debugger you use for VB macros?
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > Very unlikely there is a problem with the VB Interpreter :}
> > >  
> > > Did you realize that you can single step through your code?
> > >  
> > > Regards
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 3:56 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Hi Tom,
> > >
> > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > >  
> > > > I can't understand what you are saying, but to wait for an input I think you would do something like
> > > >  
> > > > while (not IsActive(INPUT5))
> > > >   Sleep(100)
> > > > wend
> > > >  
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > >  
> > > > Hi Tom,
> > > >
> > > > Outputs and inputs enabled.
> > > >
> > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > sequence. The idea is to have an output condition, or a temp.
> > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > I will test both and see.
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃÆ'‚ 
> > > > > activatesignal(OUTPUT1) should work.ÃÆ'‚  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > ÃÆ'‚ 
> > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > ÃÆ'‚ 
> > > > > activatesignal(OUTPUT1)
> > > > > Sleep 1000
> > > > > deactivatesignal(OUTPUT1)
> > > > > Sleep 1000
> > > > > activatesignal(OUTPUT1)
> > > > > Sleep 1000
> > > > > deactivatesignal(OUTPUT1)
> > > > >
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃÆ'‚ 
> > > > > Hi Tom,
> > > > >
> > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > So I call functions inside the Main Sub.
> > > > > I also use MsgBox to check what's wrong.
> > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > >
> > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > >
> > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > >
> > > > > I posted My code in the txt file ATC_J_Debug.
> > > > >
> > > > > Thanks for your attention,
> > > > >
> > > > > Jerome
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > The air cylinder procedure was written to add a security check.
> > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > >
> > > > > > Thanks for your help,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > >
> > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'‚ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'‚ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > To debug you might change the:
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > NewTool = GetSelectedTool()
> > > > > > > OldTool = GetCurrentTool()
> > > > > > >
> > > > > > > to
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > NewTool = 5
> > > > > > > OldTool = 3
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'‚ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > 'Air Cylinder Homing
> > > > > > > sub AirCyHome()
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > end sub
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > End Function
> > > > > > >
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'‚ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'Æ'‚ÃÆ'‚  What type of spindle do you have?
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Regards
> > > > > > > TK
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > >
> > > > > > > while(IsMoving())
> > > > > > > Sleep(100)
> > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > while (IsMoving())
> > > > > > >
> > > > > > > Should be this:
> > > > > > >
> > > > > > > Code "G00 Z-35"
> > > > > > > While IsMoving()
> > > > > > > Wend
> > > > > > >
> > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > >
> > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > >
> > > > > > > I tried that, and your file without success.
> > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > >
> > > > > > > IsMoving()<>(IsMoving())
> > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > >
> > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > >
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I know this is Mach3 related.
> > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > >
> > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > >
> > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > >
> > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > I haven't checked your work yet.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Hi Tom, Ray,
> > > > > > > > >
> > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > >
> > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > >
> > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > >
> > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > >
> > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > >
> > > > > > > > > Thanks for your attention,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4825 From: Fouijar Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I don't see the example you're talking about.

J.


--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Many thanks for your help.
>
> I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> I always have the syntax error, but will try as you did, without
> main statement.
>
> I'll have a check on your file now.
>
> Regards, J
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > Look at the example I provided.  I removed the sub main statement (no need for it).  It makes the function or subroutine calls fine.
> >  
> > Regards
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 4:30 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> >  
> > Re,
> >
> > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I realize that but I use the included interpreter in Mach3 which is...
> > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > >
> > > What is the debugger you use for VB macros?
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > >  
> > > > Very unlikely there is a problem with the VB Interpreter :}
> > > >  
> > > > Did you realize that you can single step through your code?
> > > >  
> > > > Regards
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > >  
> > > > Hi Tom,
> > > >
> > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > >  
> > > > > I can't understand what you are saying, but to wait for an input I think you would do something like
> > > > >  
> > > > > while (not IsActive(INPUT5))
> > > > >   Sleep(100)
> > > > > wend
> > > > >  
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > >  
> > > > > Hi Tom,
> > > > >
> > > > > Outputs and inputs enabled.
> > > > >
> > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > I will test both and see.
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'‚ 
> > > > > > activatesignal(OUTPUT1) should work.ÃÆ'‚  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > ÃÆ'‚ 
> > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > ÃÆ'‚ 
> > > > > > activatesignal(OUTPUT1)
> > > > > > Sleep 1000
> > > > > > deactivatesignal(OUTPUT1)
> > > > > > Sleep 1000
> > > > > > activatesignal(OUTPUT1)
> > > > > > Sleep 1000
> > > > > > deactivatesignal(OUTPUT1)
> > > > > >
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚ 
> > > > > > Hi Tom,
> > > > > >
> > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > So I call functions inside the Main Sub.
> > > > > > I also use MsgBox to check what's wrong.
> > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > >
> > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > >
> > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > >
> > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > >
> > > > > > Thanks for your attention,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > >
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > >
> > > > > > > Thanks for your help,
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > >
> > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'‚ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'‚ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > To debug you might change the:
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > OldTool = GetCurrentTool()
> > > > > > > >
> > > > > > > > to
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > NewTool = 5
> > > > > > > > OldTool = 3
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'‚ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > 'Air Cylinder Homing
> > > > > > > > sub AirCyHome()
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > end sub
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > End Function
> > > > > > > >
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'‚ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'Æ'‚ÃÆ'‚  What type of spindle do you have?
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > >
> > > > > > > > while(IsMoving())
> > > > > > > > Sleep(100)
> > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > while (IsMoving())
> > > > > > > >
> > > > > > > > Should be this:
> > > > > > > >
> > > > > > > > Code "G00 Z-35"
> > > > > > > > While IsMoving()
> > > > > > > > Wend
> > > > > > > >
> > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > >
> > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > >
> > > > > > > > I tried that, and your file without success.
> > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > >
> > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > >
> > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I know this is Mach3 related.
> > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > >
> > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > >
> > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > >
> > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > I haven't checked your work yet.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > >
> > > > > > > > > J.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > >
> > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > >
> > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > >
> > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > >
> > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > >
> > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > >
> > > > > > > > > > Thanks for your attention,
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4827 From: Tom Kerekes Date: 5/7/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
Opps I think I uploaded the original file rather than the one with my syntax fixes.
 
I re-up-loaded it.  See M6StartTK.m1s in your folder.
 
Regards
TK
 
 

Group: DynoMotion Message: 4831 From: Fouijar Date: 5/8/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?

Regards,

Jerome

PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
>  
> Opps I think I uploaded the original file rather than the one with my syntax fixes.
>  
> I re-up-loaded it.  See M6StartTK.m1s in your folder.
>  
> Regards
> TK
>  
>  
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 5:24 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
>  
> Hi Tom,
>
> I don't see the example you're talking about.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > Many thanks for your help.
> >
> > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > I always have the syntax error, but will try as you did, without
> > main statement.
> >
> > I'll have a check on your file now.
> >
> > Regards, J
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > Look at the example I provided.  I removed the sub main statement (no need for it).  It makes the function or subroutine calls fine.
> > >  
> > > Regards
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 4:30 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Re,
> > >
> > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > >
> > > > What is the debugger you use for VB macros?
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > >  
> > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > >  
> > > > > Did you realize that you can single step through your code?
> > > > >  
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > >  
> > > > > Hi Tom,
> > > > >
> > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'‚ 
> > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'‚ I think you would do something like
> > > > > > ÃÆ'‚ 
> > > > > > while (not IsActive(INPUT5))
> > > > > > ÃÆ'‚  Sleep(100)
> > > > > > wend
> > > > > > ÃÆ'‚ 
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚ 
> > > > > > Hi Tom,
> > > > > >
> > > > > > Outputs and inputs enabled.
> > > > > >
> > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > I will test both and see.
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Æ'‚ÃÆ'‚  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > activatesignal(OUTPUT1)
> > > > > > > Sleep 1000
> > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > Sleep 1000
> > > > > > > activatesignal(OUTPUT1)
> > > > > > > Sleep 1000
> > > > > > > deactivatesignal(OUTPUT1)
> > > > > > >
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > So I call functions inside the Main Sub.
> > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > >
> > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > >
> > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > >
> > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > >
> > > > > > > Thanks for your attention,
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > >
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > >
> > > > > > > > Thanks for your help,
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > >
> > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > To debug you might change the:
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > >
> > > > > > > > > to
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > NewTool = 5
> > > > > > > > > OldTool = 3
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > sub AirCyHome()
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > > end sub
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > > End Function
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  What type of spindle do you have?
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > >
> > > > > > > > > while(IsMoving())
> > > > > > > > > Sleep(100)
> > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > while (IsMoving())
> > > > > > > > >
> > > > > > > > > Should be this:
> > > > > > > > >
> > > > > > > > > Code "G00 Z-35"
> > > > > > > > > While IsMoving()
> > > > > > > > > Wend
> > > > > > > > >
> > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > >
> > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > >
> > > > > > > > > I tried that, and your file without success.
> > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > >
> > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > >
> > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > >
> > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > >
> > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > >
> > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > >
> > > > > > > > > > J.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > >
> > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > >
> > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > >
> > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > >
> > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > >
> > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > >
> > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4832 From: Fouijar Date: 5/8/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

Forget about that, I did a false comparison with the old file... my bad.

Regards,

J

--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
>
> Regards,
>
> Jerome
>
> PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> >  
> > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> >  
> > I re-up-loaded it.  See M6StartTK.m1s in your folder.
> >  
> > Regards
> > TK
> >  
> >  
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 5:24 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> >  
> > Hi Tom,
> >
> > I don't see the example you're talking about.
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > Many thanks for your help.
> > >
> > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > I always have the syntax error, but will try as you did, without
> > > main statement.
> > >
> > > I'll have a check on your file now.
> > >
> > > Regards, J
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > >  
> > > > Look at the example I provided.  I removed the sub main statement (no need for it).  It makes the function or subroutine calls fine.
> > > >  
> > > > Regards
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > >  
> > > > Re,
> > > >
> > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > >
> > > > > What is the debugger you use for VB macros?
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > >  
> > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > >  
> > > > > > Did you realize that you can single step through your code?
> > > > > >  
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > >  
> > > > > > Hi Tom,
> > > > > >
> > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'‚ 
> > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'‚ I think you would do something like
> > > > > > > ÃÆ'‚ 
> > > > > > > while (not IsActive(INPUT5))
> > > > > > > ÃÆ'‚  Sleep(100)
> > > > > > > wend
> > > > > > > ÃÆ'‚ 
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'‚ 
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Outputs and inputs enabled.
> > > > > > >
> > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > I will test both and see.
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Æ'‚ÃÆ'‚  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > Sleep 1000
> > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > Sleep 1000
> > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > Sleep 1000
> > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > >
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > >
> > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > >
> > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > >
> > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > >
> > > > > > > > Thanks for your attention,
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > >
> > > > > > > > > Thanks for your help,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > >
> > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > To debug you might change the:
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > >
> > > > > > > > > > to
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > NewTool = 5
> > > > > > > > > > OldTool = 3
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > sub AirCyHome()
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > > > end sub
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > > > End Function
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  What type of spindle do you have?
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > >
> > > > > > > > > > while(IsMoving())
> > > > > > > > > > Sleep(100)
> > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > while (IsMoving())
> > > > > > > > > >
> > > > > > > > > > Should be this:
> > > > > > > > > >
> > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > While IsMoving()
> > > > > > > > > > Wend
> > > > > > > > > >
> > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > >
> > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > >
> > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > >
> > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > >
> > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > >
> > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > >
> > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > >
> > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > >
> > > > > > > > > > > J.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > Regards
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > >
> > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > >
> > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > >
> > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > >
> > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > >
> > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > >
> > > > > > > > > > > > Jerome
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4834 From: Fouijar Date: 5/8/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.

I think something is wrong between Mach and plugin. Do you have an idea?

Regards,
Jerome



--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Forget about that, I did a false comparison with the old file... my bad.
>
> Regards,
>
> J
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> >
> > Regards,
> >
> > Jerome
> >
> > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > >  
> > > I re-up-loaded it.  See M6StartTK.m1s in your folder.
> > >  
> > > Regards
> > > TK
> > >  
> > >  
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 5:24 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Hi Tom,
> > >
> > > I don't see the example you're talking about.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > Many thanks for your help.
> > > >
> > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > I always have the syntax error, but will try as you did, without
> > > > main statement.
> > > >
> > > > I'll have a check on your file now.
> > > >
> > > > Regards, J
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > >  
> > > > > Look at the example I provided.  I removed the sub main statement (no need for it).  It makes the function or subroutine calls fine.
> > > > >  
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > >  
> > > > > Re,
> > > > >
> > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > >
> > > > > > What is the debugger you use for VB macros?
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > >  
> > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > >  
> > > > > > > Did you realize that you can single step through your code?
> > > > > > >  
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > >  
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'‚ 
> > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'‚ I think you would do something like
> > > > > > > > ÃÆ'‚ 
> > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > ÃÆ'‚  Sleep(100)
> > > > > > > > wend
> > > > > > > > ÃÆ'‚ 
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'‚ 
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > Outputs and inputs enabled.
> > > > > > > >
> > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > I will test both and see.
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Æ'‚ÃÆ'‚  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > >
> > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > >
> > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > >
> > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > >
> > > > > > > > > Thanks for your attention,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > >
> > > > > > > > > > Thanks for your help,
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > >
> > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > >
> > > > > > > > > > > to
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > NewTool = 5
> > > > > > > > > > > OldTool = 3
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > > > > end sub
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > > > > End Function
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  What type of spindle do you have?
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > >
> > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > Sleep(100)
> > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > while (IsMoving())
> > > > > > > > > > >
> > > > > > > > > > > Should be this:
> > > > > > > > > > >
> > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > While IsMoving()
> > > > > > > > > > > Wend
> > > > > > > > > > >
> > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > >
> > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > >
> > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > >
> > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > >
> > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > >
> > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > >
> > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > >
> > > > > > > > > > > > J.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > >
> > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 4835 From: TK Date: 5/8/2012
Subject: Re: ATC M6 macro under mach3
Oh for io numbers > 127 you need to subtract 128 and specify port #2.

TK

On May 8, 2012, at 8:28 AM, "Fouijar" <fouijar@...> wrote:

 

Hi Tom,

Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.

I think something is wrong between Mach and plugin. Do you have an idea?

Regards,
Jerome

--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Forget about that, I did a false comparison with the old file... my bad.
>
> Regards,
>
> J
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> >
> > Regards,
> >
> > Jerome
> >
> > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > >  
> > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > >  
> > > I re-up-loaded it.  See M6StartTK.m1s in your folder.
> > >  
> > > Regards
> > > TK
> > >  
> > >  
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 5:24 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > >  
> > > Hi Tom,
> > >
> > > I don't see the example you're talking about.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > Many thanks for your help.
> > > >
> > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > I always have the syntax error, but will try as you did, without
> > > > main statement.
> > > >
> > > > I'll have a check on your file now.
> > > >
> > > > Regards, J
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > >  
> > > > > Look at the example I provided.  I removed the sub main statement (no need for it).  It makes the function or subroutine calls fine.
> > > > >  
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > >  
> > > > > Re,
> > > > >
> > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > >
> > > > > > What is the debugger you use for VB macros?
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > >  
> > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > >  
> > > > > > > Did you realize that you can single step through your code?
> > > > > > >  
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > >  
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'‚ 
> > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'‚ I think you would do something like
> > > > > > > > ÃÆ'‚ 
> > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > ÃÆ'‚  Sleep(100)
> > > > > > > > wend
> > > > > > > > ÃÆ'‚ 
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'‚ 
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > Outputs and inputs enabled.
> > > > > > > >
> > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > I will test both and see.
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Æ'‚ÃÆ'‚  Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > >
> > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > >
> > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > >
> > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > >
> > > > > > > > > Thanks for your attention,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > >
> > > > > > > > > > Thanks for your help,
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > >
> > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Something that complex will need to be debugged step by step.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > >
> > > > > > > > > > > to
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > NewTool = 5
> > > > > > > > > > > OldTool = 3
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  Use single step and verify each step does what you expect.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > > > > end sub
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > > > > End Function
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I don't understand how you expect this to home the spindle.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  What type of spindle do you have?
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > >
> > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > Sleep(100)
> > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > while (IsMoving())
> > > > > > > > > > >
> > > > > > > > > > > Should be this:
> > > > > > > > > > >
> > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > While IsMoving()
> > > > > > > > > > > Wend
> > > > > > > > > > >
> > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > >
> > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > >
> > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > >
> > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > >
> > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > >
> > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > >
> > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > >
> > > > > > > > > > > > J.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚  I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ 
> > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > >
> > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>

Group: DynoMotion Message: 4836 From: Fouijar Date: 5/8/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

I will check that in 1 hour, I had written a message with this port config but I was on port1...
thx

J

--- In DynoMotion@yahoogroups.com, TK <tk@...> wrote:
>
> Oh for io numbers > 127 you need to subtract 128 and specify port #2.
>
> TK
>
> On May 8, 2012, at 8:28 AM, "Fouijar" <fouijar@...> wrote:
>
> > Hi Tom,
> >
> > Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
> > I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.
> >
> > I think something is wrong between Mach and plugin. Do you have an idea?
> >
> > Regards,
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > Forget about that, I did a false comparison with the old file... my bad.
> > >
> > > Regards,
> > >
> > > J
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> > > >
> > > > Regards,
> > > >
> > > > Jerome
> > > >
> > > > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > Â
> > > > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > > > > Â
> > > > > I re-up-loaded it. See M6StartTK.m1s in your folder.
> > > > > Â
> > > > > Regards
> > > > > TK
> > > > > Â
> > > > > Â
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 5:24 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > Â
> > > > > Hi Tom,
> > > > >
> > > > > I don't see the example you're talking about.
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > Many thanks for your help.
> > > > > >
> > > > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > > > I always have the syntax error, but will try as you did, without
> > > > > > main statement.
> > > > > >
> > > > > > I'll have a check on your file now.
> > > > > >
> > > > > > Regards, J
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÂÂ
> > > > > > > Look at the example I provided. I removed the sub main statement (no need for it). It makes the function or subroutine calls fine.
> > > > > > > ÂÂ
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÂÂ
> > > > > > > Re,
> > > > > > >
> > > > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > >
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > > > >
> > > > > > > > What is the debugger you use for VB macros?
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > Did you realize that you can single step through your code?
> > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > > > >
> > > > > > > > > J.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'Æ'‚ÃÆ'‚ÂÂ I think you would do something like
> > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ Sleep(100)
> > > > > > > > > > wend
> > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > Outputs and inputs enabled.
> > > > > > > > > >
> > > > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > > > I will test both and see.
> > > > > > > > > >
> > > > > > > > > > J.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > Sleep 1000
> > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > > Sleep 1000
> > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > Sleep 1000
> > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > >
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > > > >
> > > > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > > > >
> > > > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > > > >
> > > > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > > > >
> > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for your help,
> > > > > > > > > > > >
> > > > > > > > > > > > Jerome
> > > > > > > > > > > >
> > > > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > > > >
> > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Something that complex will need to be debugged step by step.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > > > >
> > > > > > > > > > > > > to
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > NewTool = 5
> > > > > > > > > > > > > OldTool = 3
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Use single step and verify each step does what you expect.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > > > > > > end sub
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > > > > > > End Function
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I don't understand how you expect this to home the spindle.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ What type of spindle do you have?
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > > > >
> > > > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > > > Sleep(100)
> > > > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > > > while (IsMoving())
> > > > > > > > > > > > >
> > > > > > > > > > > > > Should be this:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > > > While IsMoving()
> > > > > > > > > > > > > Wend
> > > > > > > > > > > > >
> > > > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > > > >
> > > > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > > > >
> > > > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > > > >
> > > > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > J.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Jerome
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> >
>
Group: DynoMotion Message: 4862 From: Fouijar Date: 5/8/2012
Subject: Re: ATC M6 macro under mach3
Hi Tom,

First of all, thank you.
Now the situation has drastically changed, everything works, I only have to adjust and tune my sequences to match expected results.
I started to write better code and adjustments.

Thanks for you patience, attention and quality support.

Regards,

Jerome



--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I will check that in 1 hour, I had written a message with this port config but I was on port1...
> thx
>
> J
>
> --- In DynoMotion@yahoogroups.com, TK <tk@> wrote:
> >
> > Oh for io numbers > 127 you need to subtract 128 and specify port #2.
> >
> > TK
> >
> > On May 8, 2012, at 8:28 AM, "Fouijar" <fouijar@> wrote:
> >
> > > Hi Tom,
> > >
> > > Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
> > > I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.
> > >
> > > I think something is wrong between Mach and plugin. Do you have an idea?
> > >
> > > Regards,
> > > Jerome
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > Forget about that, I did a false comparison with the old file... my bad.
> > > >
> > > > Regards,
> > > >
> > > > J
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> > > > >
> > > > > Regards,
> > > > >
> > > > > Jerome
> > > > >
> > > > > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > Â
> > > > > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > > > > > Â
> > > > > > I re-up-loaded it. See M6StartTK.m1s in your folder.
> > > > > > Â
> > > > > > Regards
> > > > > > TK
> > > > > > Â
> > > > > > Â
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 5:24 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > Â
> > > > > > Hi Tom,
> > > > > >
> > > > > > I don't see the example you're talking about.
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > >
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Many thanks for your help.
> > > > > > >
> > > > > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > > > > I always have the syntax error, but will try as you did, without
> > > > > > > main statement.
> > > > > > >
> > > > > > > I'll have a check on your file now.
> > > > > > >
> > > > > > > Regards, J
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÂÂ
> > > > > > > > Look at the example I provided. I removed the sub main statement (no need for it). It makes the function or subroutine calls fine.
> > > > > > > > ÂÂ
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÂÂ
> > > > > > > > Re,
> > > > > > > >
> > > > > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > > > > >
> > > > > > > > > What is the debugger you use for VB macros?
> > > > > > > > >
> > > > > > > > > J.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > > Did you realize that you can single step through your code?
> > > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'‚ÂÂ
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > > > > >
> > > > > > > > > > J.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'Æ'‚ÃÆ'‚ÂÂ I think you would do something like
> > > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ Sleep(100)
> > > > > > > > > > > wend
> > > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > Outputs and inputs enabled.
> > > > > > > > > > >
> > > > > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > > > > I will test both and see.
> > > > > > > > > > >
> > > > > > > > > > > J.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > > Sleep 1000
> > > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > > > Sleep 1000
> > > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > > Sleep 1000
> > > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > > >
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > > > > >
> > > > > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > > > > >
> > > > > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > > > > >
> > > > > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > >
> > > > > > > > > > > > Jerome
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > > > > >
> > > > > > > > > > > > > Thanks for your help,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > > > > >
> > > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Something that complex will need to be debugged step by step.
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > to
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > NewTool = 5
> > > > > > > > > > > > > > OldTool = 3
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Use single step and verify each step does what you expect.
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > > > > > > > end sub
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > > > > > > > End Function
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I don't understand how you expect this to home the spindle.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ What type of spindle do you have?
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > > > > Sleep(100)
> > > > > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > > > > while (IsMoving())
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Should be this:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > > > > While IsMoving()
> > > > > > > > > > > > > > Wend
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Jerome
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > J.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> > > > > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Jerome
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > >
> >
>
Group: DynoMotion Message: 4864 From: Tom Kerekes Date: 5/8/2012
Subject: Re: ATC M6 macro under mach3
Hi Jerome,
 
Thanks for your patience.
 
Regards
TK